home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809am / Compont / Sample1 / Update / TapiForm.dfm / TapiForm.txt
Text File  |  1998-06-29  |  6KB  |  289 lines

  1. object TapiCallManager: TTapiCallManager
  2.   Left = 243
  3.   Top = 107
  4.   Width = 557
  5.   Height = 423
  6.   Caption = 'TAPI Demonstration Project'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCloseQuery = FormCloseQuery
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object PanelTop: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 549
  21.     Height = 129
  22.     Align = alTop
  23.     BevelOuter = bvNone
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 15
  27.       Top = 6
  28.       Width = 84
  29.       Height = 13
  30.       Caption = 'Enter the number:'
  31.     end
  32.     object ePhoneNum: TMaskEdit
  33.       Left = 110
  34.       Top = 2
  35.       Width = 93
  36.       Height = 21
  37.       EditMask = '!9 \(999\) 000-0000;1;_'
  38.       MaxLength = 16
  39.       TabOrder = 0
  40.       Text = '  (   ) 000-0000'
  41.     end
  42.     object btnDial: TButton
  43.       Left = 253
  44.       Top = 6
  45.       Width = 58
  46.       Height = 25
  47.       Caption = 'Dial'
  48.       TabOrder = 1
  49.       OnClick = btnDialClick
  50.     end
  51.     object btnHangup: TButton
  52.       Left = 253
  53.       Top = 35
  54.       Width = 58
  55.       Height = 25
  56.       Caption = 'Hangup'
  57.       TabOrder = 2
  58.       OnClick = btnHangupClick
  59.     end
  60.     object cboxDevices: TComboBox
  61.       Left = 13
  62.       Top = 24
  63.       Width = 228
  64.       Height = 21
  65.       ItemHeight = 13
  66.       TabOrder = 3
  67.       Text = 'Select a device to use'
  68.       OnChange = cboxDevicesChange
  69.     end
  70.     object cbLineMapper: TCheckBox
  71.       Left = 15
  72.       Top = 50
  73.       Width = 149
  74.       Height = 17
  75.       Caption = 'Automatically select Line?'
  76.       TabOrder = 4
  77.       OnClick = cbLineMapperClick
  78.     end
  79.     object cboxMediaMode: TComboBox
  80.       Left = 315
  81.       Top = 8
  82.       Width = 233
  83.       Height = 21
  84.       ItemHeight = 13
  85.       Items.Strings = (
  86.         'LINEMEDIAMODE_UNKNOWN'
  87.         'LINEMEDIAMODE_INTERACTIVEVOICE'
  88.         'LINEMEDIAMODE_AUTOMATEDVOICE'
  89.         'LINEMEDIAMODE_DATAMODEM'
  90.         'LINEMEDIAMODE_G3FAX'
  91.         'LINEMEDIAMODE_TDD'
  92.         'LINEMEDIAMODE_G4FAX'
  93.         'LINEMEDIAMODE_DIGITALDATA'
  94.         'LINEMEDIAMODE_TELETEX'
  95.         'LINEMEDIAMODE_VIDEOTEX'
  96.         'LINEMEDIAMODE_TELEX'
  97.         'LINEMEDIAMODE_MIXED'
  98.         'LINEMEDIAMODE_ADSI'
  99.         'LINEMEDIAMODE_VOICEVIEW')
  100.       TabOrder = 5
  101.       Text = 'Select a Media Mode'
  102.       OnChange = cboxMediaModeChange
  103.     end
  104.     object cboxBearerMode: TComboBox
  105.       Left = 315
  106.       Top = 36
  107.       Width = 233
  108.       Height = 21
  109.       ItemHeight = 13
  110.       Items.Strings = (
  111.         'LINEBEARERMODE_VOICE'
  112.         'LINEBEARERMODE_SPEECH'
  113.         'LINEBEARERMODE_MULTIUSE'
  114.         'LINEBEARERMODE_DATA'
  115.         'LINEBEARERMODE_ALTSPEECHDATA'
  116.         'LINEBEARERMODE_NONCALLSIGNALING'
  117.         'LINEBEARERMODE_PASSTHROUGH')
  118.       TabOrder = 6
  119.       Text = 'Select a Bearer Mode'
  120.       OnChange = cboxBearerModeChange
  121.     end
  122.     object btnDialingProperties: TButton
  123.       Left = 253
  124.       Top = 64
  125.       Width = 105
  126.       Height = 25
  127.       Caption = 'Dialing Properties'
  128.       TabOrder = 7
  129.       OnClick = btnDialingPropertiesClick
  130.     end
  131.     object cbPulseDialing: TCheckBox
  132.       Left = 16
  133.       Top = 72
  134.       Width = 97
  135.       Height = 17
  136.       Caption = 'Pulse Dialing'
  137.       TabOrder = 8
  138.       OnClick = cbPulseDialingClick
  139.     end
  140.     object cboxAcceptCalls: TCheckBox
  141.       Left = 16
  142.       Top = 96
  143.       Width = 137
  144.       Height = 17
  145.       Caption = 'Accept Incoming Calls'
  146.       TabOrder = 9
  147.     end
  148.   end
  149.   object Memo: TMemo
  150.     Left = 185
  151.     Top = 129
  152.     Width = 364
  153.     Height = 237
  154.     Align = alClient
  155.     ScrollBars = ssVertical
  156.     TabOrder = 1
  157.     WantTabs = True
  158.   end
  159.   object StatusBar: TPanel
  160.     Left = 0
  161.     Top = 366
  162.     Width = 549
  163.     Height = 30
  164.     Align = alBottom
  165.     BevelOuter = bvLowered
  166.     TabOrder = 2
  167.   end
  168.   object Panel1: TPanel
  169.     Left = 0
  170.     Top = 129
  171.     Width = 185
  172.     Height = 237
  173.     Align = alLeft
  174.     BevelOuter = bvLowered
  175.     TabOrder = 3
  176.     object RI: TImage
  177.       Left = 4
  178.       Top = 8
  179.       Width = 28
  180.       Height = 28
  181.       Center = True
  182.       Transparent = True
  183.     end
  184.     object CD: TImage
  185.       Left = 4
  186.       Top = 72
  187.       Width = 28
  188.       Height = 28
  189.       Center = True
  190.       Transparent = True
  191.     end
  192.     object RD: TImage
  193.       Left = 4
  194.       Top = 104
  195.       Width = 28
  196.       Height = 28
  197.       Center = True
  198.       Transparent = True
  199.     end
  200.     object DSR: TImage
  201.       Left = 4
  202.       Top = 135
  203.       Width = 28
  204.       Height = 28
  205.       Center = True
  206.       Transparent = True
  207.     end
  208.     object DTR: TImage
  209.       Left = 4
  210.       Top = 167
  211.       Width = 28
  212.       Height = 28
  213.       Center = True
  214.       Transparent = True
  215.     end
  216.     object CTS: TImage
  217.       Left = 4
  218.       Top = 199
  219.       Width = 28
  220.       Height = 28
  221.       Center = True
  222.       Transparent = True
  223.     end
  224.     object Label2: TLabel
  225.       Left = 37
  226.       Top = 16
  227.       Width = 86
  228.       Height = 13
  229.       Caption = 'Ring Indicator (RI)'
  230.     end
  231.     object Label3: TLabel
  232.       Left = 37
  233.       Top = 80
  234.       Width = 89
  235.       Height = 13
  236.       Caption = 'Carrier Detect (CD)'
  237.     end
  238.     object Label4: TLabel
  239.       Left = 37
  240.       Top = 112
  241.       Width = 105
  242.       Height = 13
  243.       Caption = 'Receiving Data (RTS)'
  244.     end
  245.     object Label5: TLabel
  246.       Left = 37
  247.       Top = 143
  248.       Width = 129
  249.       Height = 13
  250.       Caption = 'Ready to Send Data (DSR)'
  251.     end
  252.     object Label6: TLabel
  253.       Left = 37
  254.       Top = 175
  255.       Width = 132
  256.       Height = 13
  257.       Caption = 'Data Terminal Ready (DTR)'
  258.     end
  259.     object Label7: TLabel
  260.       Left = 37
  261.       Top = 207
  262.       Width = 98
  263.       Height = 13
  264.       Caption = 'Clear To Send (CTS)'
  265.     end
  266.     object Port: TImage
  267.       Left = 4
  268.       Top = 40
  269.       Width = 28
  270.       Height = 28
  271.       Center = True
  272.       Transparent = True
  273.     end
  274.     object Label8: TLabel
  275.       Left = 37
  276.       Top = 48
  277.       Width = 52
  278.       Height = 13
  279.       Caption = 'Port Status'
  280.     end
  281.   end
  282.   object ImageList: TImageList
  283.     DrawingStyle = dsTransparent
  284.     Masked = False
  285.     Left = 300
  286.     Top = 168
  287.   end
  288. end
  289.